home *** CD-ROM | disk | FTP | other *** search
- /* Turn a normal file into an AFS Rollover file
- Edited version by M. Rohles $VER: 1.1 (25.10.2000)
-
- Original by Kirk Strauser. (AMINET:disk/misc/RolloverTools.lha)*/
-
- /* Program-name / Found at | Version | Configured Path+Name / misc
- ---------------------------------------------------------------------------
- Requires: PFS2/3, Rollover-Commands | 1.2 | All commands should be copied
- | into C: Dir during PFS-Install
- */
-
-
-
- if arg()=0 then do
- say 'USAGE: MakeIntoRollover FILENAME/A SIZEINBLOCKS/N/A'
- exit 10
- end
-
- parse arg fname size
-
- address command
-
- 'Copy 'fname' t:MakeIntoRollover.temp'
- 'Delete >NIL: 'fname
- 'MakeRollover 'fname' 'size
- 'echo "Adding data to Rollover file ... please wait ..."'
- 'Type >'fname' t:MakeIntoRollover.temp'
- 'Delete >NIL: t:MakeIntoRollover.temp'
-
-